/* Base Styles */
:root {
  --primary-color: #2b6cb0;    /* Modern blue for headings */
  --secondary-color: #4a5568;  /* Soft gray for body text */
  --accent-color: #48bb78;     /* Fresh green for accents */
  --background-color: #f7fafc; /* Light background */
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--secondary-color);
  background-color: var(--background-color);
}

/* Typography */
h1, h2, h3, h4 {
  color: var(--primary-color);
  font-weight: 700;
}

.lead {
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

/* Cards */
.security-card {
  background: white;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.security-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}


.security-section {
  margin-bottom: 4rem;
  padding: 2rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.security-section:hover {
  transform: translateY(-5px);
}

.section-title {
  color: var(--primary-color);
  border-bottom: 3px solid var(--accent-color);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

.subsection-title {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.custom-list li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 900;
}

.highlight-box {
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  border-left: 4px solid var(--accent-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0.25rem;
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.fa-custom-icon {
  color: white;
  font-size: 1.5rem;
}



/* Icon Styling */
.section-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-right: 0.75rem;
}

/* Utility Classes */
.highlight-text {
  color: var(--accent-color);
  font-weight: 600;
}

.border-accent {
  border-left: 4px solid var(--accent-color);
  padding-left: 1rem;
}